-
Notifications
You must be signed in to change notification settings - Fork 420
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#10888 - Chiller minimum load ratio is set in the IDF however does not appear in eplustbl.htm for Chiller:Electric:EIR and Chiller:Electric:ReformulatedEIR #10915
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` [ RUN ] EnergyPlusFixture.ChillerElectricEIR_OutputReport /home/julien/Software/Others/EnergyPlus/tst/EnergyPlus/unit/ChillerElectricEIR.unit.cc:782: Failure Expected equality of these values: "0.10" OutputReportPredefined::RetrievePreDefTableEntry(*state, orp.pdchChillerMinPLR, ChillerName) Which is: "0.00" /home/julien/Software/Others/EnergyPlus/tst/EnergyPlus/unit/ChillerElectricEIR.unit.cc:795: Failure Expected equality of these values: "20.00" OutputReportPredefined::RetrievePreDefTableEntry(*state, orp.pdchChillerDesSizeRefCHWFlowRate, ChillerName) Which is: "0.00" /home/julien/Software/Others/EnergyPlus/tst/EnergyPlus/unit/ChillerElectricEIR.unit.cc:797: Failure Expected equality of these values: "25.82" OutputReportPredefined::RetrievePreDefTableEntry(*state, orp.pdchChillerDesSizeRefCondFluidFlowRate, ChillerName) Which is: "0.00" [ FAILED ] EnergyPlusFixture.ChillerElectricEIR_OutputReport (2297 ms) [ RUN ] EnergyPlusFixture.ChillerElectricReformulatedEIR_OutputReport /home/julien/Software/Others/EnergyPlus/tst/EnergyPlus/unit/ChillerReformulatedEIR.unit.cc:453: Failure Expected equality of these values: "0.10" OutputReportPredefined::RetrievePreDefTableEntry(*state, orp.pdchChillerMinPLR, ChillerName) Which is: "0.02" [ FAILED ] EnergyPlusFixture.ChillerElectricReformulatedEIR_OutputReport (146 ms) ```
…ow rate ``` [ RUN ] EnergyPlusFixture.ChillerElectricEIR_OutputReport /home/julien/Software/Others/EnergyPlus/tst/EnergyPlus/unit/ChillerElectricEIR.unit.cc:785: Failure Expected equality of these values: "0.10" OutputReportPredefined::RetrievePreDefTableEntry(*state, orp.pdchChillerMinPLR, ChillerName) Which is: "0.00" [ FAILED ] EnergyPlusFixture.ChillerElectricEIR_OutputReport (2242 ms) [ RUN ] EnergyPlusFixture.ChillerElectricReformulatedEIR_OutputReport /home/julien/Software/Others/EnergyPlus/tst/EnergyPlus/unit/ChillerReformulatedEIR.unit.cc:457: Failure Expected equality of these values: "0.10" OutputReportPredefined::RetrievePreDefTableEntry(*state, orp.pdchChillerMinPLR, ChillerName) Which is: "0.02" [ FAILED ] EnergyPlusFixture.ChillerElectricReformulatedEIR_OutputReport (146 ms) ```
This reverts uneeded bits from commit 3eb34cf (discovered that if I trigger the unit test in the right order, and call initialize after a first size() call, the mass flow rates are properly set and reported)
|
Myoldmopar
approved these changes
Feb 5, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good here, will test locally.
@@ -1673,7 +1673,7 @@ void ElectricEIRChillerSpecs::size(EnergyPlusData &state) | |||
this->CDPlantLoc.loopNum > 0 | |||
? state.dataPlnt->PlantLoop(this->CDPlantLoc.loopNum).LoopSide(this->CDPlantLoc.loopSideNum).Branch(this->CDPlantLoc.branchNum).Name | |||
: "N/A"); | |||
OutputReportPredefined::PreDefTableEntry(state, state.dataOutRptPredefined->pdchChillerMinPLR, this->Name, this->ChillerEIRFPLRMin); | |||
OutputReportPredefined::PreDefTableEntry(state, state.dataOutRptPredefined->pdchChillerMinPLR, this->Name, this->MinPartLoadRat); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, great little fix here.
This works great with develop pulled in, thanks @jmarrec, merging. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull request overview
Description of the purpose of this PR
Pull Request Author
Reviewer